home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 8 / Night Owl CD-ROM (NOPV8) (Night Owl Publisher) (1993).ISO / 017a / binutils.arj / ROBOTUSS.C < prev    next >
C/C++ Source or Header  |  1991-03-27  |  19KB  |  600 lines

  1. /* Convert COFF-format object file to BSD format.
  2.    Used for converting the system libraries so GNU ld can link them.
  3.    Copyright (C) 1988 Free Software Foundation, Inc.
  4.  
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 1, or (at your option)
  8.    any later version.
  9.  
  10.    This program is distributed in the hope that it will be useful,
  11.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.    GNU General Public License for more details.
  14.  
  15.    You should have received a copy of the GNU General Public License
  16.    along with this program; if not, write to the Free Software
  17.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. /*
  20. ** Robotussin - convert COFF format object files to BSD format.
  21. **
  22. ** written by Jeff Lewis, donated to the Free Software Foundation.
  23. **
  24. ** BUGS:
  25. **    Should do more to verify that the input COFF file meets our
  26. ** expectations.
  27. **  On machines where the structure of the COFF data in the file does not
  28. ** match the structure of the COFF data declared (when, for example
  29. ** sizeof (struct filhdr) != FILHSZ), this program will fail.  (Don't
  30. ** ask me why this is ever allowed to come about).  Accessor functions/
  31. ** macros that painstakingly extract the data out of the file and stuff
  32. ** it in the memory struct should be written to fix this on such machines.
  33. **
  34. ** CAVEATS:
  35. **    This program cannot claim correctness, however, it does appear
  36. ** to work on my fairly vanilla Sys5r2 machine.  Someone with the time
  37. ** and a fine tooth comb (not to mention some documentation on COFF)
  38. ** should correct this!
  39. */
  40.  
  41. #ifndef COFF_ENCAPSULATE
  42. #define COFF_ENCAPSULATE
  43. #endif
  44.  
  45. /* Customization for particular machines.  */
  46.  
  47. #ifdef i386
  48. #define INPUT_MAGIC I386MAGIC
  49. #else /* not i386 */
  50. #if defined (m68k) || defined (mc68000)
  51. #define INPUT_MAGIC MC68MAGIC
  52. #endif
  53. #endif /* not i386 */
  54.  
  55. #include <stdio.h>
  56. #include <varargs.h>
  57. #include <fcntl.h>
  58.  
  59. #include "a.out.encap.h"
  60. #define N_ABSOLUTE N_ABS        /* N_ABS will be redefined in syms.h */
  61. #undef N_ABS
  62.  
  63. #include <filehdr.h>
  64. #include <aouthdr.h>
  65. #include <scnhdr.h>
  66. #include <syms.h>
  67. #include <reloc.h>
  68. /* Because of struct alignment on dwords sizeof (struct syment) is different
  69.    than the syments stored in the file.  Therefore, we must kludge:  */
  70. #define sizeof_syment (SYMESZ)
  71. #define sizeof_reloc (RELSZ)
  72. #define sizeof_section (SCNHSZ)
  73. #define sizeof_coff_header (FILHSZ)
  74. /* 
  75.   Without the following, compiling this is a pain on a BSD4.3 Vax.
  76.   Though that might not seem useful, the compatibility of byte order
  77.   between a Vax and a 386 can come in handy for cross-debugging
  78. */
  79. #ifdef NO_VFPRINTF
  80. #define vfprintf(fp, format, ap) _doprnt (format, ap, fp)
  81. #endif /* not HAVE_VPRINTF */
  82.  
  83. extern long lseek ();
  84. extern void exit ();
  85. extern char *memcpy ();
  86. extern int errno;
  87.  
  88. void error (), sys_error ();
  89. static void reloc_segment ();
  90. char *mem_alloc ();
  91.  
  92. int fd_in, fd_out;        /* input and output file descriptors */
  93.  
  94. struct filehdr coff_header;        /* file header from the input file */
  95. struct exec bsd_header;        /* file header for the output file */
  96.  
  97. struct syment *coff_sym_listp;        /* list of symbols from the input */
  98. int *symbol_map;            /* mapping of input symbol #'s to
  99.                    output symbol numbers */
  100. char *text_and_data;            /* space for text & data section data */
  101. char *relocations;            /* space for output reloc entries */
  102. int verbose_flag;            /* flag for debugging */
  103.  
  104. struct scnhdr coff_text_header;        /* COFF text section header */
  105. struct scnhdr coff_data_header;        /* COFF data section header */
  106. struct scnhdr coff_bss_header;        /* COFF bss section header */
  107. int text_sect_num;            /* COFF section # for text */
  108. int data_sect_num;            /* COFF section # for data */
  109. int bss_sect_num;            /* COFF section # for bss */
  110.  
  111. int
  112. main (argc, argv)
  113.      int argc;
  114.      char **argv;
  115. {
  116.   int i, j;
  117.   char *coff_string_table, *bsd_string_table;
  118.   register char *pc, *pc2;
  119.   int string_table_len;
  120.   int symbol_count;
  121.   struct scnhdr section;
  122.   struct nlist name;
  123.  
  124.   if (argc < 3)
  125.     error ("Usage: %s COFF-file BSD-file", argv[0]);
  126.   if (argc > 3)
  127.     verbose_flag = 1;
  128.  
  129.   fd_in = open (argv[1], O_RDONLY);
  130.   if (fd_in < 0)
  131.     sys_error ("can't open %s", argv[1]);
  132.  
  133.   fd_out = open (argv[2], O_WRONLY | O_CREAT | O_TRUNC, 0666);
  134.   if (fd_out < 0)
  135.     sys_error ("can't open %s", argv[2]);
  136.  
  137.   /*
  138.    ** Read in the file header and all section headers searching
  139.    ** for text, data and bss.  We note the section #'s of these
  140.    ** sections for use when examining symbols.
  141.    */
  142.  
  143.   if (read (fd_in, &coff_header, sizeof_coff_header) != sizeof_coff_header)
  144.     error ("can't read file header");
  145.  
  146.   if (coff_header.f_magic != INPUT_MAGIC)
  147.     error ("bad magic number in coff file\n");
  148.  
  149.   lseek (fd_in, sizeof_coff_header + coff_header.f_opthdr, 0);
  150.  
  151.   for (i = 1; i <= coff_header.f_nscns; ++i)
  152.     {
  153.       if (read (fd_in, §ion, sizeof_section) != sizeof_section)
  154.     error ("can't read section header #%d", i);
  155.       if (strcmp (section.s_name, _TEXT) == 0)
  156.     {
  157.       text_sect_num = i;
  158.       memcpy (&coff_text_header, §ion, sizeof section);
  159.     } 
  160.       else if (strcmp (section.s_name, _DATA) == 0)
  161.     {
  162.       data_sect_num = i;
  163.       memcpy (&coff_data_header, §ion, sizeof section);
  164.     } 
  165.       else if (strcmp (section.s_name, _BSS) == 0)
  166.     {
  167.       bss_sect_num = i;
  168.       memcpy (&coff_bss_header, §ion, sizeof section);
  169.     }
  170.     }
  171.  
  172. #ifdef sun386
  173. /*
  174.   The purpose of the following kludge is to cope with the discrepancy
  175.   between coff_data_header.s_vaddr and coff_text_header.s_size; in a BSD
  176.   object file, they are assumed equal.  It should be ok to use
  177.   coff_data_header.s_paddr, since it has no other apparent use.
  178. */
  179.   coff_data_header.s_paddr = coff_text_header.s_size;
  180.   coff_bss_header.s_paddr = coff_data_header.s_size + coff_text_header.s_size;
  181. #endif
  182.  
  183.   /*
  184.    ** Pass1 thru the symbol table - count usable symbols and map
  185.    ** old symbol #'s into new ones (as used by relocation
  186.    ** info).  We're only interested in keeping the kinds of symbols
  187.    ** we'd expect to find in a BSD library object file: no debug
  188.    ** symbols, file names, section definition symbols, etc.
  189.    ** Section definition symbols are referenced by reloc entries
  190.    ** in the COFF file, so we note their position with a negative
  191.    ** symbol number indicating the section.  -1 is used to flag
  192.    ** symbols we're not interested in, yielding an unexpected error
  193.    ** if we find any reloc entries referencing them.
  194.    */
  195.  
  196.   coff_sym_listp =
  197.     (struct syment *) mem_alloc (coff_header.f_nsyms * sizeof (struct syment));
  198.   symbol_map = (int *) mem_alloc (coff_header.f_nsyms * sizeof *symbol_map);
  199.   if (lseek (fd_in, coff_header.f_symptr, 0) < 0L)
  200.     sys_error ("can't seek to COFF symbols");
  201.   for (i = 0; i < coff_header.f_nsyms; ++i)
  202.     {
  203.       if (read (fd_in, coff_sym_listp + i, sizeof_syment) != sizeof_syment)
  204.     error ("can't read COFF symbols");
  205.     }
  206.   symbol_count = 0;
  207.   for (i = 0; i < coff_header.f_nsyms; ++i)
  208.     {
  209.       if (coff_sym_listp[i].n_scnum != N_DEBUG
  210.       && coff_sym_listp[i].n_name[0] != '.'
  211.       && coff_sym_listp[i].n_scnum != -1)
  212.     {
  213.       if (verbose_flag)
  214.         printf ("map %d to %d\n", i, symbol_count);
  215.       symbol_map[i] = symbol_count++;
  216. #ifdef sun386
  217.       if (coff_sym_listp[i].n_scnum == data_sect_num)
  218.         coff_sym_listp[i].n_value -=
  219.           coff_data_header.s_vaddr - coff_data_header.s_paddr;
  220.       else if (coff_sym_listp[i].n_scnum == bss_sect_num)
  221.         coff_sym_listp[i].n_value -=
  222.           coff_bss_header.s_vaddr - coff_bss_header.s_paddr;
  223. #endif
  224.     } 
  225.       else
  226.     {
  227.       if (coff_sym_listp[i].n_sclass == C_STAT)
  228.         {
  229.           if (strcmp (coff_sym_listp[i].n_name, _TEXT) == 0)
  230.         symbol_map[i] = -N_TEXT;
  231.           else if (strcmp (coff_sym_listp[i].n_name, _DATA) == 0)
  232.         symbol_map[i] = -N_DATA;
  233.           else if (strcmp (coff_sym_listp[i].n_name, _BSS) == 0)
  234.         symbol_map[i] = -N_BSS;
  235.           else
  236.         symbol_map[i] = -1;
  237.         } 
  238.       else
  239.         {
  240.           symbol_map[i] = -1;
  241.         }
  242.     }
  243.       /* skip auxillary entries */
  244.       j = coff_sym_listp[i].n_numaux;
  245.       if (j != 0)
  246.     {
  247.       if (j < 0)
  248.         error ("invalid numaux");
  249.       if (j != 1)
  250.         fprintf (stderr, "unlikely numaux value\n");
  251.       while (--j >= 0)
  252.         ++i;
  253.     }
  254.     }
  255.  
  256.   /* now we know enough to write the output file header */
  257.  
  258.   N_SET_MAGIC (bsd_header, OMAGIC);
  259.   bsd_header.a_text = coff_text_header.s_size;
  260.   bsd_header.a_data = coff_data_header.s_size;
  261.   bsd_header.a_bss = coff_bss_header.s_size;
  262.   bsd_header.a_syms = symbol_count * sizeof (struct nlist);
  263.   bsd_header.a_entry = 0;
  264.   bsd_header.a_trsize = coff_text_header.s_nreloc * sizeof (struct relocation_info);
  265.   bsd_header.a_drsize = coff_data_header.s_nreloc * sizeof (struct relocation_info);
  266.   if (write (fd_out, &bsd_header, sizeof bsd_header) != sizeof bsd_header)
  267.     sys_error ("can't write BSD header");
  268.  
  269.   /*
  270.    ** Read in and save text and data sections - some data in
  271.    ** these sections may need to be altered due to relocations.
  272.    */
  273.  
  274.   text_and_data = (char *) mem_alloc (coff_text_header.s_size + coff_data_header.s_size);
  275.   if (lseek (fd_in, coff_text_header.s_scnptr, 0) < 0L)
  276.     sys_error ("can't seek to text section");
  277.   if (read (fd_in, text_and_data, coff_text_header.s_size) != coff_text_header.s_size)
  278.     error ("can't read text section");
  279.   if (lseek (fd_in, coff_data_header.s_scnptr, 0) < 0L)
  280.     sys_error ("can't seek to data section");
  281.   if (read (fd_in, text_and_data + coff_text_header.s_size, coff_data_header.s_size) != coff_data_header.s_size)
  282.     error ("can't read data section");
  283.  
  284.   /*
  285.    ** Convert the relocation entries and do any text or data
  286.    ** modifications necessary.
  287.    */
  288.  
  289.   relocations = (char *) mem_alloc (bsd_header.a_trsize + bsd_header.a_drsize);
  290.   reloc_segment (&coff_text_header, relocations);
  291.   reloc_segment (&coff_data_header, relocations + bsd_header.a_trsize);
  292.  
  293.   if (write (fd_out, text_and_data, coff_text_header.s_size + coff_data_header.s_size)
  294.       != coff_text_header.s_size + coff_data_header.s_size)
  295.     sys_error ("can't write text and data sections");
  296.   /* ZZ - are there any alignment considerations?? */
  297.   if ((coff_text_header.s_size & 1) || (coff_data_header.s_size & 1))
  298.     fprintf (stderr, "non-aligned text or data section\n");
  299.   if (write (fd_out, relocations, bsd_header.a_trsize + bsd_header.a_drsize)
  300.       != bsd_header.a_trsize + bsd_header.a_drsize)
  301.     sys_error ("can't write relocation entries");
  302.  
  303.   /*
  304.    ** Second pass thru the symbol table.  
  305.    ** a COFF symbol entry may contain up to 8 chars of symbol name
  306.    ** in the entry itself - symbol names > 8 go into the string table,
  307.    ** whereas the BSD entry puts all symbol names into the string
  308.    ** table.
  309.    */
  310.  
  311.   if (lseek (fd_in, coff_header.f_symptr + coff_header.f_nsyms * sizeof_syment, 0) < 0L)
  312.     error ("can't seek to string table");
  313.  
  314.   i = read (fd_in, &string_table_len, sizeof string_table_len);
  315.   if (i == sizeof string_table_len)
  316.     {
  317.       coff_string_table = mem_alloc (string_table_len);
  318.       string_table_len -= sizeof string_table_len;
  319.       i = read (fd_in, coff_string_table + sizeof string_table_len, string_table_len);
  320.       if (i < 0)
  321.     error ("can't read string table");
  322.       if (i != string_table_len)
  323.     error ("truncated string table - expected %d, got %d",
  324.            string_table_len, i);
  325.     } 
  326.   else
  327.     {
  328.       string_table_len = 0;
  329.     }
  330.   bsd_string_table = mem_alloc (string_table_len + coff_header.f_nsyms * (SYMNMLEN + 1));
  331.   pc = bsd_string_table + sizeof string_table_len;
  332.   for (i = 0; i < coff_header.f_nsyms; ++i)
  333.     {
  334.       if (coff_sym_listp[i].n_scnum != N_DEBUG
  335.       && coff_sym_listp[i].n_name[0] != '.'
  336.       && coff_sym_listp[i].n_scnum != -1)
  337.     {
  338.       if (coff_sym_listp[i].n_zeroes == 0)
  339.         {
  340.           j = pc - bsd_string_table;
  341. #ifndef nounderscore
  342.           if (coff_sym_listp[i].n_sclass == C_EXT
  343.           || coff_sym_listp[i].n_sclass == C_STAT)
  344.         *pc++ = '_';
  345. #endif
  346.           pc2 = coff_string_table + coff_sym_listp[i].n_offset;
  347.           while (*pc++ = *pc2++)
  348.         /* null */ ;
  349.           name.n_un.n_strx = j;
  350.         } 
  351.       else
  352.         {
  353.           pc2 = &coff_sym_listp[i].n_name[0];
  354.           j = pc - bsd_string_table;
  355. #ifndef nounderscore
  356.           if (coff_sym_listp[i].n_sclass == C_EXT
  357.           || coff_sym_listp[i].n_sclass == C_STAT)
  358.         *pc++ = '_';
  359. #endif
  360.           {
  361.         int x;
  362.         for (x = 0; x < SYMNMLEN; x++)
  363.           {
  364.             if (*pc2 == 0)
  365.               break;
  366.             *pc++ = *pc2++;
  367.           }
  368.         *pc++ = 0;
  369.           }
  370.           name.n_un.n_strx = j;
  371.         }
  372.       switch (coff_sym_listp[i].n_scnum)
  373.         {
  374.         case N_ABS:
  375.           name.n_type = N_ABSOLUTE;
  376.           break;
  377.         case N_UNDEF:
  378.           name.n_type = N_UNDF;
  379.           break;
  380.         default:
  381.           if (coff_sym_listp[i].n_scnum == text_sect_num)
  382.         name.n_type = N_TEXT;
  383.           else if (coff_sym_listp[i].n_scnum == data_sect_num)
  384.         name.n_type = N_DATA;
  385.           else if (coff_sym_listp[i].n_scnum == bss_sect_num)
  386.         name.n_type = N_BSS;
  387.           break;
  388.         }
  389.       if (coff_sym_listp[i].n_sclass == C_EXT)
  390.         name.n_type |= N_EXT;
  391.       name.n_other = 0;
  392.       name.n_desc = 0;
  393.       name.n_value = coff_sym_listp[i].n_value;
  394.  
  395.       if (write (fd_out, &name, sizeof name) != sizeof name)
  396.         sys_error ("can't write symbol");
  397.     }
  398.       /* skip auxillary entries */
  399.       j = coff_sym_listp[i].n_numaux;
  400.       if (j != 0)
  401.     {
  402.       while (--j >= 0)
  403.         ++i;
  404.     }
  405.     }
  406.   i = *((int *) bsd_string_table) = pc - bsd_string_table;
  407.   if (write (fd_out, bsd_string_table, i) != i)
  408.     error ("can't write string table");
  409.  
  410.   close (fd_in);
  411.   close (fd_out);
  412.   exit (0);
  413. }
  414.  
  415. /*
  416. ** Convert the relocation entries and do any text or data
  417. ** modifications necessary.
  418. */
  419.  
  420. static void
  421. reloc_segment (section_headerp, reloc_infop)
  422.      struct scnhdr *section_headerp;
  423.      struct relocation_info *reloc_infop;
  424. {
  425.   struct reloc coff_reloc;
  426.   int i;
  427.  
  428.   if (lseek (fd_in, section_headerp->s_relptr, 0) < 0L)
  429.     error ("can't seek to relocation entries");
  430.   for (i = 0; i < section_headerp->s_nreloc; ++i)
  431.     {
  432.       if (read (fd_in, &coff_reloc, sizeof_reloc) != sizeof_reloc)
  433.     error ("can't read relocation entry");
  434. #ifdef sun386
  435.       coff_reloc.r_vaddr -=
  436.     section_headerp->s_vaddr - section_headerp->s_paddr;
  437. #endif
  438.       if (verbose_flag)
  439.     printf ("vaddr = 0x%x, symndx = %d\n", coff_reloc.r_vaddr, coff_reloc.r_symndx);
  440.       /*
  441.        ** The reloc references a symbol declared common, thus the
  442.        ** value of the symbol holds its size (in bytes).  In COFF,
  443.        ** apparently this info is also put into the binary -
  444.        ** BSD doesn't like this, so we subtract it out.
  445.        */
  446.       if (coff_sym_listp[coff_reloc.r_symndx].n_scnum == N_UNDEF)
  447.     {
  448.       if (coff_sym_listp[coff_reloc.r_symndx].n_value != 0)
  449.         {
  450.           if (verbose_flag)
  451.         printf ("adjust common 0x%x (%d)\n",
  452.             coff_sym_listp[coff_reloc.r_symndx].n_value,
  453.             coff_sym_listp[coff_reloc.r_symndx].n_value);
  454.           switch (coff_reloc.r_type)
  455.         {
  456.         case R_RELBYTE:
  457.           *((char *) (text_and_data + coff_reloc.r_vaddr))
  458.             -= coff_sym_listp[coff_reloc.r_symndx].n_value;
  459.           break;
  460.         case R_RELWORD:
  461.           *((short *) (text_and_data + coff_reloc.r_vaddr))
  462.             -= coff_sym_listp[coff_reloc.r_symndx].n_value;
  463.           break;
  464.         case R_RELLONG:
  465.             case R_DIR32:    /* these are the only two that really show up */
  466.             case R_PCRLONG:
  467.           *((int *) (text_and_data + coff_reloc.r_vaddr))
  468.             -= coff_sym_listp[coff_reloc.r_symndx].n_value;
  469.           break;
  470.             default:
  471.           error ("unknown relocation type 0%o", coff_reloc.r_type);
  472.         }
  473.         }
  474.     }
  475.       /*
  476.        ** >= 0 means its an extern - value is the output symbol #.
  477.        ** < 0 means its an intern - value is N_TEXT, N_DATA or N_BSS.
  478.        */
  479.       if (symbol_map[coff_reloc.r_symndx] >= 0)
  480.     {
  481.       reloc_infop->r_symbolnum = symbol_map[coff_reloc.r_symndx];
  482.       reloc_infop->r_extern = 1;
  483.     } 
  484.       else
  485.     {
  486.       if (symbol_map[coff_reloc.r_symndx] == -1)
  487.         error ("Oops! possible bug - reloc reference to ignored symbol");
  488. #ifdef sun386
  489.       {
  490.         int offset=0;
  491.         switch (-symbol_map[coff_reloc.r_symndx])
  492.           {
  493.           case N_DATA:
  494.         offset = coff_data_header.s_vaddr - coff_data_header.s_paddr;
  495.         break;
  496.           case N_BSS:
  497.         offset = coff_bss_header.s_vaddr - coff_bss_header.s_paddr;
  498.         break;
  499.           }
  500.         switch (coff_reloc.r_type)
  501.           {
  502.           case R_RELBYTE:
  503.         *((char *) (text_and_data + coff_reloc.r_vaddr)) -= offset;
  504.         break;
  505.           case R_RELWORD:
  506.         *((short *) (text_and_data + coff_reloc.r_vaddr)) -= offset;
  507.         break;
  508.           case R_RELLONG:
  509.           case R_DIR32:
  510.           case R_PCRLONG:
  511.         *((int *) (text_and_data + coff_reloc.r_vaddr)) -= offset;
  512.         break;
  513.           default:
  514.         error ("unknown relocation type 0%o", coff_reloc.r_type);
  515.           }
  516.       }
  517. #endif
  518.       reloc_infop->r_symbolnum = -symbol_map[coff_reloc.r_symndx];
  519.       reloc_infop->r_extern = 0;
  520.     }
  521.       /*
  522.        ** COFF address includes the section address - BSD doesn't, so
  523.        ** subtract it out.
  524.        */
  525. #ifdef sun386
  526.       coff_reloc.r_vaddr +=
  527.     section_headerp->s_vaddr - section_headerp->s_paddr;
  528. #endif
  529.       reloc_infop->r_address = coff_reloc.r_vaddr - section_headerp->s_vaddr;
  530.       switch (coff_reloc.r_type)
  531.     {
  532.     case R_PCRLONG:
  533.       reloc_infop->r_pcrel = 1;
  534.       reloc_infop->r_length = 2; /* 4 bytes */
  535.       break;
  536.     case R_DIR32:
  537.     case R_RELLONG:
  538.       reloc_infop->r_pcrel = 0;
  539.       reloc_infop->r_length = 2;
  540.       break;
  541.     default:
  542.       error ("can't handle coff reloction type 0%o", coff_reloc.r_type);
  543.     }
  544.  
  545.       if (verbose_flag)
  546.     printf ("reloc: addr = 0x%x, synum = %d\n",
  547.         reloc_infop->r_address, reloc_infop->r_symbolnum);
  548.       reloc_infop->r_pad = 0;
  549.       ++reloc_infop;
  550.     }
  551. }
  552.  
  553. void
  554. error (format, va_alist)
  555.      char *format;
  556.      va_dcl
  557. {
  558.   va_list args;
  559.  
  560.   va_start (args);
  561.   fprintf (stderr, "robotussin: ");
  562.   vfprintf (stderr, format, args);
  563.   putc ('\n', stderr);
  564.   va_end (args);
  565.   exit (1);
  566. }
  567.  
  568. extern char *sys_errlist[];
  569. extern int errno;
  570.  
  571. void
  572. sys_error (format, va_alist)
  573.      char *format;
  574.      va_dcl
  575. {
  576.   va_list args;
  577.  
  578.   va_start (args);
  579.   fprintf (stderr, "robotussin: ");
  580.   vfprintf (stderr, format, args);
  581.   fprintf (stderr, ": %s\n", sys_errlist[errno]);
  582.   va_end (args);
  583.   exit (1);
  584. }
  585.  
  586. extern char *malloc ();
  587.  
  588. char *
  589. mem_alloc (size)
  590.      int size;
  591. {
  592.   char *pc;
  593.  
  594.   if ((pc = malloc (size)) == NULL)
  595.     error ("memory exhausted!");
  596.   return pc;
  597. }
  598.  
  599. /* end */
  600.